home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / mrcry204.zip / PLANET.EKA < prev    next >
Text File  |  1991-03-04  |  376b  |  18 lines

  1. ; equations for planet design
  2. ; used by Jerry Pournelle for science fiction books
  3.  
  4. ; i illuminence, L luminosity, R distance to earth,
  5. ; M stellar mass, P period, all relative to sol/earth
  6.  
  7. ; basic equations
  8. i = L / R^2
  9. M P^2 = R^3
  10.  
  11. ; values for a particular story
  12. i = 0.97
  13. L = 0.93
  14. M = 1.2
  15. ; exclude extreme values of P, R
  16. 1e-10 < P < 1e10
  17. 1e-10 < R < 1e10
  18.